home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / funnel.zoo / sources / list.c < prev    next >
C/C++ Source or Header  |  1993-04-11  |  11KB  |  326 lines

  1. /*##############################################################################
  2.  
  3. FUNNNELWEB COPYRIGHT
  4. ====================
  5. FunnelWeb is a literate-programming macro preprocessor.
  6.  
  7. Copyright (C) 1992 Ross N. Williams.
  8.  
  9.    Ross N. Williams
  10.    ross@spam.adelaide.edu.au
  11.    16 Lerwick Avenue, Hazelwood Park 5066, Australia.
  12.  
  13. This program is free software; you can redistribute it and/or modify
  14. it under the terms of Version 2 of the GNU General Public License as
  15. published by the Free Software Foundation.
  16.  
  17. This program is distributed WITHOUT ANY WARRANTY; without even the implied
  18. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  19. See Version 2 of the GNU General Public License for more details.
  20.  
  21. You should have received a copy of Version 2 of the GNU General Public
  22. License along with this program. If not, you can FTP the license from
  23. prep.ai.mit.edu/pub/gnu/COPYING-2 or write to the Free Software
  24. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26. Section 2a of the license requires that all changes to this file be
  27. recorded prominently in this file. Please record all changes here.
  28.  
  29. Programmers:
  30.    RNW  Ross N. Williams  ross@spam.adelaide.edu.au
  31.  
  32. Changes:
  33.    07-May-1992  RNW  Program prepared for release under GNU GPL V2.
  34.  
  35. ##############################################################################*/
  36.  
  37.  
  38. /******************************************************************************/
  39. /*                                    LIST.C                                  */
  40. /******************************************************************************/
  41.  
  42. #include "style.h"
  43.  
  44. #include "as.h"
  45. #include "machin.h"
  46. #include "memory.h"
  47.  
  48. /******************************************************************************/
  49.  
  50. /* In order to catch uninitialized and corrupted lists, the first and last    */
  51. /* fields of legitimate list objects contain magic numbers. The following     */
  52. /* #defines give the values of these numbers. The first thing that each       */
  53. /* function of this package does is to check the two magic number fields of   */
  54. /* the list it has just been passed, and bomb the package if the fields have  */
  55. /* the wrong values. This technique is likely to pick uninitialized lists,    */
  56. /* as well as lists that have been partially overwritten.                     */
  57. #define MAGIC_HEAD_VALUE  (97673812L)
  58. #define MAGIC_TAIL_VALUE  (49357294L)
  59.  
  60. /******************************************************************************/
  61.  
  62. typedef struct node_t_      /* Structure used to compose the list proper.     */
  63.   {
  64.    struct node_t_ *p_prev;  /* Points to adjacent node closer to head.        */
  65.    struct node_t_ *p_next;  /* Points to adjacent node closer to tail.        */
  66.    p_void          p_data;  /* Points to data in heap for this element.       */
  67.   }
  68.   node_t;
  69.  
  70. typedef node_t *p_node_t;   /* Pointer to node type.                          */
  71.  
  72. typedef struct              /* Main list object containing all the goodies.   */
  73.   {
  74.    ulong    magic_head;     /* Helpful in catching list object corruptions.   */
  75.    p_node_t p_head;         /* Points to the head of the list (or NULL).      */
  76.    p_node_t p_tail;         /* Points to the tail of the list (or NULL).      */
  77.    p_node_t p_mark;         /* Points to the marked element   (or NULL).      */
  78.    size_t   data_bytes;     /* Number of bytes in this list's data elements.  */
  79.    ulong    length;         /* Number of elements in this list.               */
  80.    ulong    magic_tail;     /* Helpful in catching list object corruptions.   */
  81.   }
  82.   ls_t;
  83.  
  84. typedef ls_t *p_ls_t;       /* Main list view type.                           */
  85.  
  86. typedef p_void    p_lsel_t; /* Escalating pointers to data elements!          */
  87. typedef p_lsel_t *pp_lsel_t;
  88.  
  89. /* We need the function prototypes from list.h. The #define ensures that the  */
  90. /* abstract exported definition of a list is not visible to us here.          */
  91. #define INLISTC
  92. #include "list.h"
  93.  
  94. /******************************************************************************/
  95.  
  96. LOCAL void ls_check P_((p_ls_t));
  97. LOCAL void ls_check(p_ls)
  98. /* Accepts a pointer to a list and performs a series of checks to make sure   */
  99. /* that the list has not been corrupted in some way.                          */
  100. /* This function is the sort of function that is normally turned off in       */
  101. /* production versions. However, we are too scared to in FunnelWeb because    */
  102. /* lists are not typesafe and are used throughout the program.                */
  103. p_ls_t p_ls;
  104. {
  105.  as_cold(p_ls!=NULL,"ls_check: List pointer is NULL.");
  106.  as_cold(p_ls->magic_head==MAGIC_HEAD_VALUE,
  107.          "ls_check: Magic number at head of record is incorrect.");
  108.  as_cold(p_ls->magic_tail==MAGIC_TAIL_VALUE,
  109.          "ls_check: Magic number at tail of record is incorrect.");
  110. }
  111.  
  112. /******************************************************************************/
  113.  
  114. EXPORT p_ls_t ls_cre (data_bytes)
  115. size_t data_bytes;
  116. {
  117.  p_ls_t p_ls;
  118.  
  119.  p_ls=(p_ls_t) mm_temp(sizeof(ls_t));
  120.  p_ls->magic_head = MAGIC_HEAD_VALUE;
  121.  p_ls->p_head     = NULL;
  122.  p_ls->p_tail     = NULL;
  123.  p_ls->p_mark     = NULL;
  124.  p_ls->data_bytes = data_bytes;
  125.  p_ls->length     = 0;
  126.  p_ls->magic_tail = MAGIC_TAIL_VALUE;
  127.  return p_ls;
  128. }
  129.  
  130. /******************************************************************************/
  131.  
  132. EXPORT void ls_add(p_ls,p_lsel)
  133. p_ls_t p_ls;
  134. p_void p_lsel;
  135. {
  136.  p_node_t p_node;
  137.  
  138.  AS_HCODE(ls_check(p_ls);)
  139.  
  140.  /* Create the list node and the data node hanging off it. Copy the data in. */
  141.  p_node        =(p_node_t) mm_temp(sizeof(node_t));
  142.  p_node->p_data=(p_void)   mm_temp(p_ls->data_bytes);
  143.  memcpy(p_node->p_data,p_lsel,p_ls->data_bytes);
  144.  
  145.  /* Attach the new node to the tail of the list. */
  146.  
  147.  p_node->p_prev=p_ls->p_tail;      /* Pointers in the new node itself. */
  148.  p_node->p_next=NULL;
  149.  
  150.  if (p_ls->p_head == NULL)         /* Headside pointer pointing to new node. */
  151.    p_ls->p_head=p_node;
  152.  else
  153.    p_ls->p_tail->p_next=p_node;
  154.  
  155.  p_ls->p_tail=p_node;              /* Tailside pointer pointing to new node. */
  156.  
  157.  /* Inc the length. */
  158.  p_ls->length++;
  159. }
  160.  
  161. /******************************************************************************/
  162.  
  163. EXPORT void ls_lop(p_ls)
  164. p_ls_t p_ls;
  165. {
  166.  /* p_node_t p_targ; ONLY NEEDED IF DEALLOCATING */
  167.  
  168.  AS_HCODE(ls_check(p_ls);)
  169.  
  170.  as_cold(p_ls->length>0,"ls_lop: List is empty.");
  171.  
  172.  /* Make a note of the node being deleted. */
  173.  /* p_targ=p_ls->p_tail; ONLY NEEDED IF DEALLOCATED. */
  174.  
  175.  /* If the target node was the only node, stitch up the ends of the list. */
  176.  if (--p_ls->length==0)
  177.    {
  178.     p_ls->p_head=NULL;
  179.     p_ls->p_tail=NULL;
  180.    }
  181.  else
  182.    { /* Unhook node from tail of list. */
  183.     p_ls->p_tail         = p_ls->p_tail->p_prev;
  184.     p_ls->p_tail->p_next = NULL;
  185.    }
  186.  
  187.  /* The following two commented calls show what we WOULD have to do to        */
  188.  /* deallocate the list node. However, in FunnelWeb, all list items are       */
  189.  /* allocated under the mm package watermark system using mm_temp calls so    */
  190.  /* there is no need to free up the memory here.                              */
  191.  /* DEALLOCATE(PV p_targ->p_data);                                            */
  192.  /* DEALLOCATE(PV p_targ);                                                    */
  193. }
  194.  
  195. /******************************************************************************/
  196.  
  197. EXPORT ulong ls_len(p_ls)
  198. p_ls_t p_ls;
  199. {
  200.  AS_HCODE(ls_check(p_ls);)
  201.  return p_ls->length;
  202. }
  203.  
  204. /******************************************************************************/
  205.  
  206. EXPORT void ls_fir(p_ls)
  207. p_ls_t p_ls;
  208. {
  209.  ls_check(p_ls);
  210.  p_ls->p_mark=p_ls->p_head;
  211. }
  212.  
  213. /******************************************************************************/
  214.  
  215. EXPORT void ls_nxt(p_ls,pp_lsel)
  216. p_ls_t    p_ls;
  217. pp_lsel_t pp_lsel;
  218. {
  219.  AS_HCODE(ls_check(p_ls);)
  220.  
  221.  if (p_ls->p_mark==NULL)
  222.    {*pp_lsel=NULL; return;}
  223.  *pp_lsel=p_ls->p_mark->p_data;
  224.  p_ls->p_mark=p_ls->p_mark->p_next;
  225. }
  226.  
  227. /******************************************************************************/
  228.  
  229. EXPORT void ls_loo(p_ls,index,pp_lsel)